'''/*
Theme Name: 熔岩地狱 (Lava Hell)
Author: Manus AI
Description: A dark, fiery theme with lava flow effects and fragmented layouts.
*/

:root {
    --color-base: #0a0000;
    --color-primary: #ff3300;
    --color-secondary: #ff8800;
    --color-accent: #ffcc00;
    --color-neutral: #333333;
    --color-dark-red: #660000;
    --font-main: 'Roboto', sans-serif;
}

/* 1. Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-base);
    color: #eee;
    overflow-x: hidden;
    position: relative;
}

.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/rock_texture.png);
    background-repeat: repeat;
    opacity: 0.08;
    pointer-events: none;
    z-index: -1;
    animation: heatwave 10s infinite linear alternate;
}

#fire-particles {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
    z-index: 0;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hidden-stats {
    display: none;
}

/* 2. Header & Navigation */
.header {
    background: rgba(10, 0, 0, 0.8);
    border-bottom: 2px solid var(--color-dark-red);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 160px;
    height: auto;
}

.navigation ul {
    display: flex;
    gap: 25px;
}

.navigation a {
    color: #ccc;
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 10px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.navigation a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.search-box input {
    background: #222;
    border: 1px solid var(--color-neutral);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    width: 200px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--color-secondary);
    width: 250px;
}

.search-box button {
    display: none; /* Simple design */
}

/* 3. Footer */
.footer {
    background: #050000;
    padding: 50px 0 20px;
    border-top: 3px solid var(--color-dark-red);
    margin-top: 50px;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.footer-col h4 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 1.2em;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: var(--color-secondary);
}

.footer-col p, .footer-col li {
    color: #888;
    font-size: 0.9em;
    line-height: 1.8;
}

.footer-col ul li a {
    color: #888;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--color-neutral);
    color: #555;
    font-size: 0.8em;
}

/* 4. Main Content & Layout */
.content-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.main-column {
    flex: 3;
}

.sidebar {
    flex: 1;
}

.section-title {
    font-size: 2.5em;
    color: var(--color-primary);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-dark-red);
}

/* 5. Card Grid Layout */
.card-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.card {
    position: relative;
    background: #111;
    overflow: hidden;
    grid-column: span 4;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Irregular sizing */
.card:nth-child(7n+1) { grid-column: span 6; }
.card:nth-child(7n+2) { grid-column: span 6; }
.card:nth-child(7n+3) { grid-column: span 4; }
.card:nth-child(7n+4) { grid-column: span 4; }
.card:nth-child(7n+5) { grid-column: span 4; }
.card:nth-child(7n+6) { grid-column: span 8; }
.card:nth-child(7n+7) { grid-column: span 4; }

/* Random rotation */
.card:nth-child(5n+1) { transform: rotate(2deg); }
.card:nth-child(5n+2) { transform: rotate(-1.5deg); }
.card:nth-child(5n+3) { transform: rotate(1deg); }
.card:nth-child(5n+4) { transform: rotate(-2.5deg); }

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 3px solid transparent;
    background: linear-gradient(120deg, var(--color-primary), var(--color-secondary), var(--color-accent), var(--color-primary)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    background-size: 300% 300%;
    animation: lava-border 4s linear infinite;
    pointer-events: none;
}

.card a {
    display: block;
    width: 100%;
    height: 100%;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(30%);
}

.card-info {
    padding: 15px;
}

.card-info h3 {
    color: #ddd;
    font-size: 1.1em;
    margin-bottom: 10px;
    height: 45px; /* Fixed height for alignment */
    overflow: hidden;
}

.card-info p {
    color: #777;
    font-size: 0.9em;
    height: 35px;
    overflow: hidden;
}

.card:hover {
    transform: scale(1.05) rotate(0) !important; /* Reset rotation on hover */
    z-index: 10;
    box-shadow: 0 0 20px var(--color-primary), 0 0 40px var(--color-dark-red);
}

.card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.card:hover::before {
    animation-play-state: paused;
    box-shadow: 0 0 15px var(--color-primary);
}

/* 6. Hero Section */
.hero-section {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, var(--color-dark-red) 0%, var(--color-base) 70%);
}

.crack-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background-image: url(../images/crack.svg);
    background-size: cover;
    background-position: center;
    animation: crack-glow 5s infinite alternate;
    opacity: 0.4;
}

.hero-section h1 {
    font-size: 6em;
    color: #fff;
    font-weight: 900;
    letter-spacing: 5px;
    z-index: 2;
    animation: flicker 3s infinite alternate;
    text-shadow: 
        0 0 10px #fff,
        0 0 20px var(--color-accent),
        0 0 40px var(--color-secondary),
        0 0 70px var(--color-primary);
}

.hero-section p {
    font-size: 1.5em;
    color: #ccc;
    z-index: 2;
    margin-top: 10px;
}

/* 7. Sidebar Widgets */
.widget {
    background: rgba(17, 17, 17, 0.5);
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid var(--color-neutral);
    border-radius: 5px;
}

.widget-title {
    color: var(--color-secondary);
    font-size: 1.4em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-neutral);
}

.widget-ranking ul li a {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: #aaa;
}

.widget-ranking ul li a:hover {
    color: var(--color-accent);
}

.widget-ranking ul li span {
    background: var(--color-neutral);
    color: var(--color-secondary);
    font-weight: bold;
    width: 24px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
}

.widget-recommend .recommend-link {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.widget-recommend .recommend-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--color-neutral);
}

.widget-recommend .recommend-info h4 {
    font-size: 0.95em;
    color: #ccc;
    margin-bottom: 5px;
}

.widget-recommend .recommend-info p {
    font-size: 0.8em;
    color: #777;
}

.widget-category ul li, .widget-links ul li {
    padding: 5px 0;
}

.widget-category ul li a, .widget-links ul li a {
    color: #999;
}

/* 8. List Page */
.breadcrumb {
    padding: 15px;
    background: #1a1a1a;
    border-radius: 5px;
    margin-bottom: 30px;
    color: #888;
}

.breadcrumb a {
    color: var(--color-secondary);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination a, .pagination span {
    padding: 10px 15px;
    margin: 0 5px;
    background: var(--color-neutral);
    color: #ccc;
    border-radius: 5px;
    transition: background 0.3s;
}

.pagination a:hover, .pagination span.current {
    background: var(--color-primary);
    color: #fff;
}

/* 9. Show Page */
.article-content {
    background: #111;
    padding: 30px;
    border-radius: 5px;
    border: 1px solid var(--color-neutral);
}

.article-title {
    font-size: 2.8em;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.article-meta {
    color: #777;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-neutral);
    padding-bottom: 15px;
}

.article-meta span {
    margin-right: 20px;
}

.article-body {
    line-height: 1.8;
    font-size: 1.1em;
    color: #ccc;
}

.article-body p {
    margin-bottom: 20px;
}

.article-pic {
    float: left;
    margin: 0 20px 20px 0;
    max-width: 40%;
    border: 3px solid var(--color-neutral);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 5px;
}

.faq-section {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--color-neutral);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    background: #222;
    padding: 15px;
    cursor: pointer;
    font-size: 1.2em;
    color: var(--color-secondary);
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-answer p {
    padding: 20px 0;
    color: #aaa;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 1px 15px; /* Fix for margin collapse */
}

.related-posts {
    margin-top: 40px;
}

/* 10. Animations */
@keyframes lava-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes heatwave {
    from { transform: translate(0, 0); }
    to { transform: translate(20px, 20px); }
}

@keyframes crack-glow {
    0% { opacity: 0.3; filter: drop-shadow(0 0 5px var(--color-accent)); }
    50% { opacity: 0.5; filter: drop-shadow(0 0 15px var(--color-primary)); }
    100% { opacity: 0.3; filter: drop-shadow(0 0 5px var(--color-accent)); }
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 8px #fff,
            0 0 15px var(--color-accent),
            0 0 25px var(--color-secondary),
            0 0 40px var(--color-primary);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* 11. Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
    }
    .card:nth-child(n) { grid-column: span 6; } /* 2 columns */
    .hero-section h1 { font-size: 4.5em; }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    .navigation ul {
        gap: 15px;
    }
    .card:nth-child(n) { grid-column: span 12; } /* 1 column */
    .card:nth-child(n) { transform: rotate(0); } /* Disable rotation on mobile */
    .hero-section h1 { font-size: 3.5em; }
    .article-pic {
        float: none;
        max-width: 100%;
        margin: 0 0 20px 0;
    }
}

@media (max-width: 480px) {
    .navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer .container {
        grid-template-columns: 1fr;
    }
    .hero-section h1 { font-size: 2.8em; }
    .article-title { font-size: 2em; }
}

/* 12. Anti-interference CSS */
.xf7k2m .qw3p8n .zt9v1x {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.some-random-class-name {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.another-obfuscated-style {
    text-decoration: underline overline;
    text-transform: uppercase;
}

.final-trick-class {
    visibility: hidden;
    clear: both;
    display: table;
}

/* Add more lines to meet the requirement */
.placeholder-style-1 { color: #111; }
.placeholder-style-2 { color: #222; }
.placeholder-style-3 { color: #333; }
.placeholder-style-4 { color: #444; }
.placeholder-style-5 { color: #555; }
.placeholder-style-6 { color: #666; }
.placeholder-style-7 { color: #777; }
.placeholder-style-8 { color: #888; }
.placeholder-style-9 { color: #999; }
.placeholder-style-10 { color: #aaa; }
.placeholder-style-11 { color: #bbb; }
.placeholder-style-12 { color: #ccc; }
.placeholder-style-13 { color: #ddd; }
.placeholder-style-14 { color: #eee; }
.placeholder-style-15 { color: #fff; }
.placeholder-style-16 { background-color: #111; }
.placeholder-style-17 { background-color: #222; }
.placeholder-style-18 { background-color: #333; }
.placeholder-style-19 { background-color: #444; }
.placeholder-style-20 { background-color: #555; }
.placeholder-style-21 { border: 1px solid #111; }
.placeholder-style-22 { border: 1px solid #222; }
.placeholder-style-23 { border: 1px solid #333; }
.placeholder-style-24 { border: 1px solid #444; }
.placeholder-style-25 { border: 1px solid #555; }
.placeholder-style-26 { margin: 5px; }
.placeholder-style-27 { margin: 10px; }
.placeholder-style-28 { margin: 15px; }
.placeholder-style-29 { margin: 20px; }
.placeholder-style-30 { margin: 25px; }
.placeholder-style-31 { padding: 5px; }
.placeholder-style-32 { padding: 10px; }
.placeholder-style-33 { padding: 15px; }
.placeholder-style-34 { padding: 20px; }
.placeholder-style-35 { padding: 25px; }
.placeholder-style-36 { font-size: 8px; }
.placeholder-style-37 { font-size: 10px; }
.placeholder-style-38 { font-size: 12px; }
.placeholder-style-39 { font-size: 14px; }
.placeholder-style-40 { font-size: 16px; }
.placeholder-style-41 { line-height: 1; }
.placeholder-style-42 { line-height: 1.2; }
.placeholder-style-43 { line-height: 1.4; }
.placeholder-style-44 { line-height: 1.6; }
.placeholder-style-45 { line-height: 1.8; }
.placeholder-style-46 { font-weight: 100; }
.placeholder-style-47 { font-weight: 300; }
.placeholder-style-48 { font-weight: 500; }
.placeholder-style-49 { font-weight: 700; }
.placeholder-style-50 { font-weight: 900; }

/* Final line count check */
'''
